home *** CD-ROM | disk | FTP | other *** search
/ PC Open 44 / pcopen44.iso / Internet / SimpleFind / setup.exe / {app} / SimpleFind.exe / 0 / RCDATA / TFORMHTML / TFORMHTML.txt
Encoding:
Text File  |  2000-10-06  |  2.1 KB  |  115 lines

  1. object FormHTML: TFormHTML
  2.   Left = 200
  3.   Top = 106
  4.   BorderStyle = bsDialog
  5.   Caption = 'Save Search Results as HTML file'
  6.   ClientHeight = 220
  7.   ClientWidth = 341
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 16
  19.     Top = 56
  20.     Width = 127
  21.     Height = 13
  22.     Caption = '&Number of URLs per page:'
  23.     FocusControl = ComboNumber
  24.   end
  25.   object BitBtn1: TBitBtn
  26.     Left = 56
  27.     Top = 184
  28.     Width = 75
  29.     Height = 25
  30.     TabOrder = 0
  31.     Kind = bkOK
  32.   end
  33.   object BitBtn2: TBitBtn
  34.     Left = 184
  35.     Top = 184
  36.     Width = 75
  37.     Height = 25
  38.     TabOrder = 1
  39.     Kind = bkCancel
  40.   end
  41.   object EditFileName: TEdit
  42.     Left = 16
  43.     Top = 16
  44.     Width = 233
  45.     Height = 21
  46.     TabOrder = 2
  47.   end
  48.   object Button1: TButton
  49.     Left = 254
  50.     Top = 14
  51.     Width = 75
  52.     Height = 25
  53.     Caption = '&Browse...'
  54.     TabOrder = 3
  55.     OnClick = Button1Click
  56.   end
  57.   object ComboNumber: TComboBox
  58.     Left = 160
  59.     Top = 48
  60.     Width = 89
  61.     Height = 21
  62.     Style = csDropDownList
  63.     ItemHeight = 13
  64.     Items.Strings = (
  65.       'All'
  66.       '10'
  67.       '20'
  68.       '30'
  69.       '40'
  70.       '50')
  71.     TabOrder = 4
  72.   end
  73.   object GroupBox1: TGroupBox
  74.     Left = 16
  75.     Top = 80
  76.     Width = 305
  77.     Height = 89
  78.     TabOrder = 5
  79.     object RadioDoNotOpen: TRadioButton
  80.       Left = 16
  81.       Top = 16
  82.       Width = 273
  83.       Height = 17
  84.       Caption = '&Do not open HTML file'
  85.       TabOrder = 0
  86.     end
  87.     object RadioOpen: TRadioButton
  88.       Left = 16
  89.       Top = 40
  90.       Width = 273
  91.       Height = 17
  92.       Caption = '&Open HTML file'
  93.       Checked = True
  94.       TabOrder = 1
  95.       TabStop = True
  96.     end
  97.     object RadioOpenWindow: TRadioButton
  98.       Left = 16
  99.       Top = 64
  100.       Width = 281
  101.       Height = 17
  102.       Caption = 'Open HTML file in a new &window'
  103.       TabOrder = 2
  104.     end
  105.   end
  106.   object SaveDialog: TSaveDialog
  107.     DefaultExt = 'HTML'
  108.     Filter = 'HTML files (*.html)|*.html'
  109.     Options = [ofOverwritePrompt]
  110.     Title = 'Save As HTML'
  111.     Left = 304
  112.     Top = 40
  113.   end
  114. end
  115.